9b1e31331409509a48e9489665c82eca54850e0b,test/com/facebook/buck/cxx/FakeCxxLibrary.java,FakeCxxLibrary,getNativeLinkableInput,#CxxPlatform#Linker.LinkableDepType#,154
Before Change
Linker.LinkableDepType type) {
return type == Linker.LinkableDepType.STATIC ?
NativeLinkableInput.of(
ImmutableList.of(new SourcePathArg(archive.getSourcePathToOutput())),
ImmutableSet.of(),
ImmutableSet.of()) :
NativeLinkableInput.of(
After Change
Linker.LinkableDepType type) {
return type == Linker.LinkableDepType.STATIC ?
NativeLinkableInput.of(
ImmutableList.of(SourcePathArg.of(archive.getSourcePathToOutput())),
ImmutableSet.of(),
ImmutableSet.of()) :
NativeLinkableInput.of(